home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw GX / Documents / develop GX articles & columns / Dev GX Extensions code ƒ / 4-Up.a next >
Encoding:
Text File  |  1995-04-10  |  551 b   |  30 lines  |  [TEXT/MPS ]

  1. ;--------------------------------------------------------------------------------
  2. ;FILENAME
  3. ;    4-Up.a
  4. ;    
  5. ;DESCRIPTION
  6. ;    This file contains the jump table for the 4-Up printing extension.
  7. ;        
  8. ;COPYRIGHT
  9. ;     Copyright Apple Computer, Inc. 1991
  10. ;     All rights reserved. 
  11. ;
  12. ;MODIFICATION HISTORY:
  13. ;        04/7/93            Sam Weiss            Initial Implementation
  14. ;    
  15.  
  16.  
  17. FourUpEntry        PROC        EXPORT
  18.  
  19.         DC.L        0        ; long word required by Quickdraw GX
  20.             
  21.         IMPORT    FourUpCountPages 
  22.         JMP        FourUpCountPages 
  23.  
  24.         IMPORT    FourUpDespoolPage
  25.         JMP        FourUpDespoolPage
  26.  
  27.         ENDPROC
  28.                         
  29.         END
  30.